home *** CD-ROM | disk | FTP | other *** search
- #****************************************************************************#
- # #
- # Make file for ZORTECH C/C++ 32 Bit #
- # #
- #****************************************************************************#
-
- #name the compiler
-
- CC = ztc
- CFLAGS = -A -bx -w1 -a2 -o+time -mx -3
-
- #linker
-
- LINK = blinkx
- LNKOPT =
-
- #directory ZORTECH
-
- ztd = c:\zt
-
- #implicit rules
-
- .c.obj :
- $(CC) -c $(CFLAGS) $*
-
- #executable files
-
- all: vmsc.exe
-
- # explicit rules
-
- vmsc.exe : vmsc.obj getopt.obj hpwd.obj
- $(LINK) $(LNKOPT) $(ztd)\lib\cx.obj+vmsc.obj+getopt.obj+hpwd.obj,vmsc.exe;
-
- vmsc.obj : vmsc.c mytypes.h getopt.h sysuaf.h hpwd.h
-
- getopt.obj : getopt.c
-
- hpwd.obj : hpwd.c hpwd.h mytypes.h
-